home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 January / PCWorld_2003-01_cd.bin / Software / Vyzkuste / rychlokurz / httrack.exe / {app} / src / htsmodules.c < prev    next >
C/C++ Source or Header  |  2002-11-17  |  8KB  |  257 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: htsmodules.c subroutines:                              */
  34. /*       external modules (parsers)                             */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38. #ifndef _WIN32
  39. #if HTS_DLOPEN
  40. #include <dlfcn.h>
  41. #endif
  42. #endif
  43.  
  44. #include "htsglobal.h"
  45. #include "htsmodules.h"
  46. #include "htsopt.h"
  47. extern int fspc(FILE* fp,char* type);
  48.  
  49. /* >>> Put all modules definitions here */
  50. #include "htszlib.h"
  51. #include "htsbase.h"
  52.  
  53. typedef int (*t_hts_detect_swf)(htsmoduleStruct* str);
  54. typedef int (*t_hts_parse_swf)(htsmoduleStruct* str);
  55. /* <<< */
  56.  
  57. /* >>> Put all modules includes here */
  58. #include "htsjava.h"
  59. #if HTS_USESWF
  60. #endif
  61. /* <<< */
  62.  
  63. /* >>> Put all modules variables here */
  64.  
  65. int swf_is_available = 0;
  66. t_hts_detect_swf hts_detect_swf = NULL;
  67. t_hts_parse_swf hts_parse_swf = NULL;
  68.  
  69. int gz_is_available = 0;
  70. t_gzopen gzopen = NULL;
  71. t_gzread gzread = NULL;
  72. t_gzclose gzclose = NULL;
  73.  
  74. int SSL_is_available = 0;
  75. t_SSL_shutdown SSL_shutdown = NULL;
  76. t_SSL_free SSL_free = NULL;
  77. t_SSL_CTX_ctrl SSL_CTX_ctrl = NULL;
  78. t_SSL_new SSL_new = NULL;
  79. t_SSL_clear SSL_clear = NULL;
  80. t_SSL_set_fd SSL_set_fd = NULL;
  81. t_SSL_set_connect_state SSL_set_connect_state = NULL;
  82. t_SSL_connect SSL_connect = NULL;
  83. t_SSL_get_error SSL_get_error = NULL;
  84. t_SSL_write SSL_write = NULL;
  85. t_SSL_read SSL_read = NULL;
  86. t_SSL_library_init SSL_library_init = NULL;
  87. t_ERR_load_crypto_strings ERR_load_crypto_strings = NULL;
  88. t_ERR_load_SSL_strings ERR_load_SSL_strings = NULL;
  89. t_SSLv23_client_method SSLv23_client_method = NULL;
  90. t_SSL_CTX_new SSL_CTX_new = NULL;
  91. t_ERR_error_string ERR_error_string = NULL;
  92. t_SSL_load_error_strings SSL_load_error_strings = NULL;
  93.  
  94. int V6_is_available = HTS_INET6;
  95.  
  96. char WHAT_is_available[64]="";
  97. /* <<< */
  98.  
  99. /* memory checks */
  100. HTSEXT_API htsErrorCallback htsCallbackErr = NULL;
  101. HTSEXT_API int htsMemoryFastXfr = 1;    /* fast xfr by default */
  102. void abortLog__fnc(char* msg, char* file, int line) {
  103.   FILE* fp = fopen("CRASH.TXT", "wb");
  104.   if (!fp) fp = fopen("/tmp/CRASH.TXT", "wb");
  105.   if (!fp) fp = fopen("C:\\CRASH.TXT", "wb");
  106.   if (fp) {
  107.     fprintf(fp, "HTTrack closed at '%s', line %d\r\n", file, line);
  108.     fprintf(fp, "Reason:\r\n%s\r\n", msg);
  109.     fflush(fp);
  110.     fclose(fp);
  111.   }
  112. }
  113. HTSEXT_API t_abortLog abortLog__ = abortLog__fnc;    /* avoid VC++ inlining */
  114.  
  115. static void htspe_log(htsmoduleStruct* str, char* msg);
  116.  
  117. int hts_parse_externals(htsmoduleStruct* str) {
  118.   /* >>> Put all module calls here */
  119.  
  120.   /* JAVA */
  121.   if (hts_detect_java(str)) {
  122.     htspe_log(str, "java-lib");
  123.     return hts_parse_java(str);
  124.   }
  125.  
  126. #if HTS_USESWF
  127.   /* FLASH 
  128.    (external module derivated from Macromedia(tm)'s classes) 
  129.   */
  130.   else if (swf_is_available && hts_detect_swf(str)) {
  131.     htspe_log(str, "swf-lib");
  132.     return hts_parse_swf(str);
  133.   }
  134. #endif
  135.  
  136.   /* <<< */
  137.   
  138.   /* Not detected */
  139.   return -1;
  140. }
  141.  
  142. void htspe_init() {
  143.   static int initOk = 0;
  144.   if (!initOk) {
  145.     initOk = 1;
  146.     
  147.     /* >>> Put all module initializations here */
  148.     
  149.     /* Zlib */
  150. #if HTS_DLOPEN
  151.     {
  152.       void* handle;
  153. #ifdef _WIN32
  154.       handle = LoadLibrary("zlib");
  155. #else
  156.       handle = dlopen("libz.so", RTLD_LAZY);
  157. #endif
  158.       if (handle) {
  159.         gzopen = (t_gzopen) DynamicGet(handle, "gzopen");
  160.         gzread = (t_gzread) DynamicGet(handle, "gzread");
  161.         gzclose = (t_gzclose) DynamicGet(handle, "gzclose");
  162.         if (gzopen && gzread && gzclose) {
  163.           gz_is_available = 1;
  164.         }
  165.       }
  166.     }
  167. #endif
  168.  
  169.     /* OpenSSL */
  170. #if HTS_DLOPEN
  171.     {
  172.       void* handle;
  173. #ifdef _WIN32
  174.       handle = LoadLibrary("ssleay32");
  175. #else
  176.       handle = dlopen("libssl.so", RTLD_LAZY);
  177. #endif
  178.       if (handle) {
  179.         SSL_shutdown = (t_SSL_shutdown) DynamicGet(handle, "SSL_shutdown");
  180.         SSL_free = (t_SSL_free) DynamicGet(handle, "SSL_free");
  181.         SSL_new = (t_SSL_new) DynamicGet(handle, "SSL_new");
  182.         SSL_clear = (t_SSL_clear) DynamicGet(handle, "SSL_clear");
  183.         SSL_set_fd = (t_SSL_set_fd) DynamicGet(handle, "SSL_set_fd");
  184.         SSL_set_connect_state = (t_SSL_set_connect_state) DynamicGet(handle, "SSL_set_connect_state");
  185.         SSL_connect = (t_SSL_connect) DynamicGet(handle, "SSL_connect");
  186.         SSL_get_error = (t_SSL_get_error) DynamicGet(handle, "SSL_get_error");
  187.         SSL_write = (t_SSL_write) DynamicGet(handle, "SSL_write");
  188.         SSL_read = (t_SSL_read) DynamicGet(handle, "SSL_read");
  189.         SSL_library_init = (t_SSL_library_init) DynamicGet(handle, "SSL_library_init");
  190.         ERR_load_SSL_strings = (t_ERR_load_SSL_strings) DynamicGet(handle, "ERR_load_SSL_strings");
  191.         SSLv23_client_method = (t_SSLv23_client_method) DynamicGet(handle, "SSLv23_client_method");
  192.         SSL_CTX_new  = (t_SSL_CTX_new) DynamicGet(handle, "SSL_CTX_new");
  193.         SSL_load_error_strings = (t_SSL_load_error_strings) DynamicGet(handle, "SSL_load_error_strings");
  194.         SSL_CTX_ctrl = (t_SSL_CTX_ctrl) DynamicGet(handle, "SSL_CTX_ctrl");
  195. #ifdef _WIN32
  196.         handle = LoadLibrary("libeay32");
  197. #endif
  198.         ERR_load_crypto_strings = (t_ERR_load_crypto_strings) DynamicGet(handle, "ERR_load_crypto_strings");
  199.         ERR_error_string = (t_ERR_error_string) DynamicGet(handle, "ERR_error_string");
  200.  
  201.         if (SSL_shutdown && SSL_free && SSL_CTX_ctrl && SSL_new && SSL_clear && 
  202.           SSL_set_fd && SSL_set_connect_state && SSL_connect && SSL_get_error && SSL_write 
  203.           && SSL_read && SSL_library_init && SSLv23_client_method && SSL_CTX_new
  204.           && SSL_load_error_strings && ERR_error_string) {
  205.           SSL_is_available = 1;
  206.         }
  207.       }
  208.     }
  209. #endif
  210.     /* */
  211.     
  212.     /* 
  213.     FLASH
  214.     Load the library on-the-fly, if available
  215.     If not, that's not a problem
  216.     */
  217. #if HTS_DLOPEN
  218.     {
  219. #ifdef _WIN32
  220.       void* handle = LoadLibrary("htsswf");
  221. #else
  222.       void* handle = dlopen("libhtsswf.so", RTLD_LAZY);
  223. #endif
  224.       if (handle) {
  225.         hts_detect_swf = (t_hts_detect_swf) DynamicGet(handle, "hts_detect_swf");
  226.         hts_parse_swf = (t_hts_parse_swf) DynamicGet(handle, "hts_parse_swf");
  227.         if (hts_detect_swf && hts_parse_swf) {
  228.           swf_is_available = 1;
  229.         }
  230.       }
  231.       // FreeLibrary(handle);
  232.       // dlclose(handle);
  233.     }
  234. #endif
  235.  
  236.     /* <<< */
  237.  
  238.     /* Options availability */
  239.     sprintf(WHAT_is_available, "%s%s%s%s",
  240.       V6_is_available ? "" : "-noV6",
  241.       gz_is_available ? "" : "-nozip",
  242.       SSL_is_available ? "" : "-nossl",
  243.       swf_is_available ? "+swf" : "");
  244.  
  245.     
  246.   }
  247. }
  248.  
  249. static void htspe_log(htsmoduleStruct* str, char* msg) {
  250.   char* savename = str->filename;
  251.   httrackp* opt = (httrackp*) str->opt;
  252.   if ((opt->debug>1) && (opt->log!=NULL)) {
  253.     fspc(opt->log,"debug"); fprintf(opt->log,"(External module): parsing %s using module %s"LF, 
  254.       savename, msg);
  255.   }
  256. }
  257.